*{
      margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20PX 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .logo{
    width: 80px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}
nav ul li a{
    text-decoration: none;
    color: black;
    font-size: 17px;
}
body{
    background: #55ff;
    font-size: 14px;
}
.container{
    width: 80%;
    margin: 50px  auto;
     text-align: center;
  padding: 40px 20px;
  color: white;
}
.contact-box{
    background: #fff;
    display: flex;
}
.contact-left{
    flex-basis: 60%;
    padding: 40px  60px;
}
.contact-right{
    flex-basis: 40%;
    padding: 40px;
    background: blue;
    color: #fff;
}
h1{
    margin-bottom: 10px;
}
.container p{
     margin-bottom: 40px;
}
.input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 26PX;

}
.input-row.input-group{
    flex-basis: 45%;
}
input {
    width: 100%;
    border: none;
    border-bottom: 1PX  solid  #ccc;
    outline: none;
    padding-bottom: 5PX;
}
textarea{
    width: 100%;
    border: 1px  solid  #ccc;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}
label{
    margin-bottom: 6px;
    display: block;
    color:#1c00b5;
}
button{
    background: #1c00b5;
    width: 100PX;
    border: none;
    outline: none;
    color: #fff;
    height: 35px;
    border-radius: 30px;
    margin-top: 20px;
    box-shadow: 0px  5px  15px  0px  rgba(28,0,181,0,3);
 padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 10px;
}
.send-btn:hover {
  background-color: #372bc4;
}
.contact-left h3 {
    color: #1c00b5;
    font-weight: 600;
    margin-bottom: 30px;
}.contact-right h3 {
    
    font-weight: 600;
    margin-bottom: 30px;
}
tr td:first-child{
    padding-right: 20px;
}
tr td{
    padding-top: 20px;
}